.aboutpage{
    margin: 0;
    padding: 0;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.aboutcontainer{
    width: 100%;
    height: 100vh;
    background-color:#fff;
}
.aboutcontainer header{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#007ced;
    font-weight:700;
    font-size: 20px;
    text-shadow:#333 1px 1px;
}

.aboutcontainer .body-container{
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
}

.body-container .about-picture img{
    width: 300px;
    height: 300px;
    margin-left: 100px;
    margin-top: 40px;

}
.body-container .about-text p{
    text-align: justify;
    padding: 6px;
    margin: 0 20px;

}
.aboutcontainer hr{
  border-bottom: 2px solid #007ced;
  margin-top: 5px;
  width:100% ;
  box-shadow: 2px #6a5acd;
}
@media(max-width:768px){
    .aboutcontainer{
        height: auto;
        padding: 20px;
    }   
    .aboutcontainer .body-container{
        flex-direction: column;
        align-items:center ;
    }
    .body-container .about-picture img{
        width: 80%;
        height: auto;
        margin-left: 0;
        margin-top: 20px;
    }
    .body-container .about-text p{
        margin: 0 10px;
    }
}